a9c5122a4543f0433938081ce30390d473e6427e,VUE2/src/tufts/vue/action/SaveAction.java,SaveAction,actionPerformed,#ActionEvent#,56
Before Change
if (saveCondition == true)
{
if (file.getName().endsWith(".xml"))
ActionUtil.marshallMap(file);
else if (file.getName().endsWith(".jpeg"))
new ImageConversion().createJpeg(file);
After Change
if (file.getName().endsWith(".xml")) {
LWMap map = tufts.vue.VUE.getActiveMap();
map.setLabel(file.getName());
ActionUtil.marshallMap(file, map);
}
else if (file.getName().endsWith(".jpeg"))
new ImageConversion().createJpeg(file);